Chemistry is the study of matter and the changes it undergoes.
Matter is anything that occupies space and has mass.
A substance is a form of matter that has a definite composition and distinct properties.
A mixture is a combination of two or more substances in which the substances retain their distinct identities.
An element is a substance that cannot be separated into simpler substances by chemical means.
A compound is a substance composed of atoms of two or more elements chemically united in fixed proportions.
A physical change does not alter the composition or identity of a substance.
A chemical change alters the composition or identity of the substance(s) involved.
An extensive property of a material depends upon how much matter is being considered (mass, length, volume, etc.).
An intensive property of a material does not depend upon how much matter is being considered (density, temperature, color, etc.).
Requirements¶
- Understand the concepts
In 1960, the General Conference of Weights and Measures, the international authority on units, proposed a revised metric system called the International System of Units (abbreviated SI, from the French System International d'Unites).
Base Quantity | Name of Unit | Symbol |
---|---|---|
Length | meter | m |
Mass | kilogram | kg |
Time | second | s |
Electrical current | ampere | A |
Temperature | kelvin | K |
Amount of substance | mole | mol |
Luminous intensity | candela | cd |
Prefix | Symbol | Meaning | Example |
---|---|---|---|
tera- | T | $10^{12}$ | 1 Tm = $1\times 10^{12}\,\text{m}$ |
giga- | G | $10^9$ | 1 Gm = $1\times 10^9\,\text{m}$ |
mega- | M | $10^6$ | 1 Mm = $1\times 10^6\,\text{m}$ |
kilo- | k | $10^3$ | 1 km = $1\times 10^3\,\text{m}$ |
deci- | d | $10^{-1}$ | 1 dm = $1\times 10^{-1}\,\text{m}$ |
centi- | c | $10^{-2}$ | 1 cm = $1\times 10^{-2}\,\text{m}$ |
milli- | m | $10^{-3}$ | 1 mm = $1\times 10^{-3}\,\text{m}$ |
micro- | $\mu$ | $10^{-6}$ | 1 $\mu$m = $1\times 10^{-6}\,\text{m}$ |
nano- | n | $10^{-9}$ | 1 nm = $1\times 10^{-9}\,\text{m}$ |
pico- | p | $10^{-12}$ | 1 pm = $1\times 10^{-12}\,\text{m}$ |
Mass – measure of the quantity of matter
SI unit of mass is the kilogram (kg)
$$1\,\text{kg} = 1000\,\text{g} = 1\times10^3\,\text{g}$$Weight – force that gravity exerts on an object
Volume – SI derived unit for volume is cubic meter ($\text{m}^3$)
$$1\,\text{mL} = 1\,\text{cm}^3=1\times10^{-6}\,\text{m}^3$$$$1\,\text{L} = 1\,\text{dm}^3 = 1000\,\text{mL} =1\times10^{-3}\,\text{m}^3$$Density is the mass of an object divided by its volume.
$$d=\frac{m}{V}$$$$1\,\text{g/cm}^3 = 1\,\text{g/mL} = 1000\,\text{kg/m}^3$$from IPython.display import YouTubeVideo
YouTubeVideo("HRe1mire4Gc", width=700, height=550)
# Watch the following video for a better understanding
# on unit conversion.
Requirements¶
- Learn how to calculate density.
- Know how to convert units from one to another.
All numbers can be expressed in the form
$$N\times10^n$$where $N$ is a number btween 1 and 10 and $n$, the exponent, is a positive or negative integer. Any number expressed in this way is said to be written in scientific notation.
For example,
$$568.762 = 5.68762\times10^2$$because the decimal point is moved to the left by two places and $n=2$.
$$0.00000772 = 7.72\times10^{-6}$$because the decimal point is moved to the right by 6 places and $n=-6$.
Addition and Subtraction
First write each quantity with the same exponent; then, combine them.
$$4.31\times10^4 + 3.9\times10^3 = 4.31\times10^4+0.39\times10^4=4.70\times10^4$$Multiplication and Division
To multiply numbers, we multiply $N_1$ and $N_2$ in the usual way, but add the exponents together. To divide, we divide $N_1$ and $N_2$ as usual and subtract the exponents.
$$(8.0\times10^4)\times(5.0\times10^2)=(8.0\times5.0)(10^{4+2})=40\times10^6=4.0\times10^7$$$$\frac{8.5\times10^4}{5.0\times10^9}=\frac{8.5}{5.0}\times10^{4-9}=1.7\times10^{-5}$$from IPython.display import YouTubeVideo
YouTubeVideo("trdbaV4TaAo", width=700, height=550)
# Scientific notation is a fundamental and very important topic.
# Watch the following relatively long video if you have difficulties
# on scientific notation.
Rules
Handling significant figures in calculations
from IPython.display import YouTubeVideo
YouTubeVideo("BmeImtwhfj8", width=700, height=550)
# Significant figure is a fundamental and very important topic.
# Watch the following relatively long video if you have difficulties
# on significant figures.
Accuracy tells us how close a measurement is to the true value of the quantity that was measured.
Precision refers to how closely two or more measurements of the same quantity agree with one another.
The numbers of measured quantities, unlike defined or directly counted quantities, are not exact. To measure the volume of liquid in a graduated cylinder, you should make a reading at the bottom of the meniscus, the lowest point on the curved surface of the liquid. In the following figure, the bottom of the meniscus in this case clearly lies between the 21 and 22 markings, meaning the liquid volume is certainly greater than 21 mL but less than 22 mL. The meniscus appears to be a bit closer to the 22-mL mark than to the 21-mL mark, and so a reasonable estimate of the liquid’s volume would be 21.6 mL. In the number 21.6, then, the digits 2 and 1 are certain, but the 6 is an estimate. Some people might estimate the meniscus position to be equally distant from each of the markings and estimate the tenth-place digit as 5, while others may think it to be even closer to the 22-mL mark and estimate this digit to be 7. Note that it would be pointless to attempt to estimate a digit for the hundredths place, given that the tenths-place digit is uncertain. In general, numerical scales such as the one on this graduated cylinder will permit measurements to one-tenth of the smallest scale division. The scale in this case has 1-mL divisions, and so volumes may be measured to the nearest 0.1 mL.
from IPython.display import YouTubeVideo
YouTubeVideo("pFl49nIGQF8", start=54, end=191, width=700, height=550)
# Watch the following video for a better understanding
# on measurement with proper significant figures.
from IPython.display import YouTubeVideo
YouTubeVideo("deLzHioCiiA", start=65, end=98, width=700, height=550)
# Watch the following video for a better understanding
# on measurement with a graduated cylinder.
Requirements¶
- Learn how to use scientific notation. Make a habit to use scientific notation.
- Learn how to determine siginificant figures.
from IPython.display import YouTubeVideo
YouTubeVideo("Lyr4h9C0JpE", width=700, height=550)
# Watch the following video for a better understanding
# of dimensional analysis.
Requirements¶
- Learn how to do unit conversion.
from IPython.core.display import HTML
def css_styling():
styles = open("custom.css", "r").read()
return HTML(styles)
css_styling()